home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20030409-20031118 / 000293_nugulus@netscape.net_Mon Sep 22 14:19:05 EDT 2003.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  59 lines

  1. Article: 14536 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!panix!news.linkpendium.com!prodigy.com!newsmst01.news.prodigy.com!prodigy.com!postmaster.news.prodigy.com!newssvr22.news.prodigy.com.POSTED!d286b79e!not-for-mail
  3. From: Jun Zhang <nugulus@netscape.net>
  4. User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4) Gecko/20030624 Netscape/7.1
  5. X-Accept-Language: en-us, en
  6. MIME-Version: 1.0
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: destination file name
  9. References: <q4Fbb.5$7e5.3@newssvr22.news.prodigy.com> <bknarg$hla$1@sesame.cc.columbia.edu>
  10. In-Reply-To: <bknarg$hla$1@sesame.cc.columbia.edu>
  11. Content-Type: text/plain; charset=us-ascii; format=flowed
  12. Content-Transfer-Encoding: 7bit
  13. Lines: 35
  14. Message-ID: <RZGbb.21$X4.14@newssvr22.news.prodigy.com>
  15. NNTP-Posting-Host: 159.66.144.147
  16. X-Complaints-To: abuse@prodigy.net
  17. X-Trace: newssvr22.news.prodigy.com 1064254449 ST000 159.66.144.147 (Mon, 22 Sep 2003 14:14:09 EDT)
  18. NNTP-Posting-Date: Mon, 22 Sep 2003 14:14:09 EDT
  19. Organization: SBC http://yahoo.sbc.com
  20. X-UserInfo1: FKPO@MC@@S@OR\TY[BHN^_TDFZ\@@FXLM@TDOCQDJ@_@FN@ANVUEAE[YETZPIWWI[FCIZA^NBFXZ_D[BFNTCNVPDTNTKHWXKB@X^B_OCJLPZ@ET_O[G\XSG@E\G[ZKVLBL^CJINM@I_KVIOR\T_M_AW_M[_BWU_HFA_]@A_A^SGFAUDE_DFTMQPFWVW[QPJN
  21. Date: Mon, 22 Sep 2003 18:14:09 GMT
  22. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14536
  23.  
  24. Appreciate your time.
  25.  
  26.  
  27. Jun
  28.  
  29. Frank da Cruz wrote:
  30. > In article <q4Fbb.5$7e5.3@newssvr22.news.prodigy.com>,
  31. > Jun Zhang  <nugulus@netscape.net> wrote:
  32. > : I did
  33. > : send \%1 /tmp/\%1
  34. > : where the value of \%1 is mydout.
  35. > : 
  36. > : kermit reported,
  37. > : SENDING: mydout => /tmp/mydout => //mydout
  38. > : and the file is sent to remotehost:/mydout. How can I make the 
  39. > : destination file remotehost:/tmp/mydout?
  40. > : 
  41. > Let's assume the remote Kermit program is a fairly modern one
  42. > (it would be easier for us to answer your questions if you included
  43. > information like this).  Then you would tell the receiving Kermit
  44. > to SET RECEIVE PATHNAMES ABSOLUTE.  Read about this command here:
  45. >   http://www.columbia.edu/kermit/ckermit70.html#x4.10
  46. > or type "help set receive" at the C-Kermit> or K-95> prompt.
  47. > Alternatively you could start the remote Kermit in server mode and then
  48. > tell the client to:
  49. >   remote cd /tmp
  50. >   send \%1
  51. >   finish  ; (or bye)
  52. > - Frank
  53.  
  54.